home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-4.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Floor_Tile" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "metals.inc"
- #include "skies.inc"
- #include "woods.inc"
- #default { finish { Shiny } }
- background { White }
-
- camera { location < 0.0*12, 0.7*12, -1*12 >
- look_at < 0, 0, 0 > }
-
- light_source { < -3*12, 10*12, -10*12 > color rgb < 2, 2, 2 > }
-
- //------------------------------------------------------------------->
- //
- // Include the file and show the object.
-
- #include "floor.inc"
-
- // Center.
- object { Floor_Tile translate < -0.5*12, 0, -0.5*12 > }
-
- // Optional sides.
- //object { Floor_Tile translate < -1.5*12, 0, -0.5*12 > }
- //object { Floor_Tile translate < 0.5*12, 0, -0.5*12 > }
-
- // Far away.
- //object { Floor_Tile translate < -1.5*12, 0, 0.5*12 > }
- //object { Floor_Tile translate < -0.5*12, 0, 0.5*12 > }
- //object { Floor_Tile translate < 0.5*12, 0, 0.5*12 > }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-